quartz: Fix call to missing symbol
authorCarlos Garnacho <carlos@lanedo.com>
Mon, 8 Apr 2013 15:25:19 +0000 (17:25 +0200)
committerCarlos Garnacho <carlosg@gnome.org>
Tue, 9 Apr 2013 10:38:46 +0000 (12:38 +0200)
This patch can be considered a leftover of commit 6f607fc8b4cd ,
replace the no longer existing function with the GDK function
meant to replace it.

This was noticeable on regular clipboard operations in quartz

gtk/gtkclipboard-quartz.c

index 482f6aa13518de0977cab81706e0423b2cd309c9..ab7732bf1c76c17d06c2da809319d8c9c7c1bdcb 100644 (file)
@@ -108,7 +108,7 @@ static GtkClipboard *clipboard_peek       (GdkDisplay       *display,
   memset (&selection_data, 0, sizeof (GtkSelectionData));
 
   selection_data.selection = clipboard->selection;
-  selection_data.target = _gtk_quartz_pasteboard_type_to_atom (type);
+  selection_data.target = gdk_quartz_pasteboard_type_to_atom_libgtk_only (type);
   selection_data.display = gdk_display_get_default ();
   selection_data.length = -1;